home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / events / ChildExistenceChangedEvent.as next >
Text File  |  2014-03-27  |  995b  |  35 lines

  1. package mx.events
  2. {
  3.    import flash.display.DisplayObject;
  4.    import flash.events.Event;
  5.    import mx.core.mx_internal;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class ChildExistenceChangedEvent extends Event
  10.    {
  11.       
  12.       public static const CHILD_REMOVE:String = "childRemove";
  13.       
  14.       mx_internal static const VERSION:String = "3.0.0.0";
  15.       
  16.       public static const OVERLAY_CREATED:String = "overlayCreated";
  17.       
  18.       public static const CHILD_ADD:String = "childAdd";
  19.        
  20.       
  21.       public var relatedObject:DisplayObject;
  22.       
  23.       public function ChildExistenceChangedEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:DisplayObject = null)
  24.       {
  25.          super(param1,param2,param3);
  26.          this.relatedObject = param4;
  27.       }
  28.       
  29.       override public function clone() : Event
  30.       {
  31.          return new ChildExistenceChangedEvent(type,bubbles,cancelable,relatedObject);
  32.       }
  33.    }
  34. }
  35.